/*

0   ->   600px :  Phone
600 ->   900px :  Tablet Portrait
900 ->   1200px:  Desktop

[1200px -> 1800px: Is where our design currently apply]

1800+: Big Desktop

$breakpoint argument choices

- phone
- tab-port
- tab-land
- big-desktop


ORDER: Base + Typography > General layout + grid > Page Layout + components
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&display=swap");
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

@font-face {
  font-family: "Cal Sans";
  src: url("../fonts/CalSans-SemiBold.woff2") format("woff2"), url("/fonts/CalSans-SemiBold.woff") format("woff");
}
body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #777;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 6rem;
  margin-top: 10rem;
}
.heading-primary--main {
  display: inline-block;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 1.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@media (max-width: 37.5em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-size: 4rem;
  }
}
.heading-primary--sub {
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  animation: moveInRight 1s ease-out;
}
@media (max-width: 37.5em) {
  .heading-primary--sub {
    display: block;
    letter-spacing: 0.3rem;
    font-size: 1.7rem;
  }
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #f7931a, #d41b62);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.2s;
  letter-spacing: 0.2rem;
}
@media (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}

.heading-tertiary {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section__features-2-heading {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin-left: 5rem;
  margin-bottom: 6rem;
}
.section__features-2-heading span {
  display: block;
  font-weight: 400;
}
@media (max-width: 56.25em) {
  .section__features-2-heading span {
    font-size: 2rem;
    font-weight: 700;
  }
}

.paragraph {
  font-size: 1.6rem;
  font-weight: 300;
  color: #000;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 56.25em) {
  .paragraph {
    font-size: 1.85rem;
  }
}

.u-center-text {
  text-align: center !important;
}

.u-left-text {
  text-align: left !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-small {
  margin-top: 4rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-top-small {
    margin-top: 3rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-margin-right-small {
  padding-right: 2rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-right-small {
    padding-right: 3rem !important;
  }
}

.u-margin-left-small {
  padding-left: 2rem !important;
}
@media (max-width: 56.25em) {
  .u-margin-left-small {
    padding-left: 3rem !important;
  }
}

.alert-box {
  margin: 2rem;
}
@media (max-width: 56.25em) {
  .alert-box {
    margin: 1.5rem 1rem;
  }
}

.alert {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 56.25em) {
  .alert {
    font-size: 2rem;
  }
}
.alert__success {
  background-color: rgba(126, 239, 104, 0.05);
  color: #57d83e;
  border: 1px solid rgba(126, 239, 104, 0.6);
}
.alert__warning {
  background-color: rgba(253, 38, 38, 0.05);
  color: #fd2626;
  border: 1px solid rgba(253, 38, 38, 0.6);
}
.alert__error {
  background-color: rgba(253, 38, 38, 0.05);
  color: #fd2626;
  border: 1px solid rgba(253, 38, 38, 0.6);
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #E9724C;
}
.btn--white::after {
  background-color: #fff;
}
.btn--pink {
  background-color: #E9724C;
  color: #fff;
}
.btn--pink::after {
  background-color: #f7931a;
}
.btn-form {
  background-color: #000;
  color: #fff;
  border: none;
  width: 100%;
  padding: 2rem 1.5rem;
}
@media (max-width: 56.25em) {
  .btn-form {
    padding: 2.5rem 2.5rem;
  }
}
.btn-form:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10rem;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}
.btn__pill {
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 1rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 56.25em) {
  .btn__pill {
    padding: 1.5rem 2.5rem;
    font-size: 1.4rem;
  }
}
.btn__pill-light {
  color: #011c31;
  background-color: #eeeeee;
}
.btn__pill-light:active {
  background-color: rgba(238, 238, 238, 0.5);
}
.btn__pill-light a {
  text-decoration: none;
  color: #000;
}
.btn__pill-dark {
  background-color: black;
  color: #fff;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #d41b62;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #d41b62;
  padding: 3px;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #d41b62;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 13px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
@media (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box h1 {
  font-weight: 500;
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #f7931a, #f2a900);
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 56.25em) {
  .feature-box__icon {
    margin-bottom: 0;
  }
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem;
}
.card__side {
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 13px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media (max-width: 56.25em) {
  .card__side {
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.card__side--front {
  background-color: #fff;
  border-radius: 13px;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #f7931a, #f2a900);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #f2a900, #f7931a);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  height: 23rem;
  background-size: cover;
  -webkit-background-blend-mode: color-burn;
  background-blend-mode: color-burn;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730), url(../img/coin-1-small.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #f7931a, #f2a900), url(../img/coin-2-small.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #f2a900, #f7931a), url(../img/coin-3-small.jpg);
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
  position: absolute;
  top: 13rem;
  left: 16rem;
  width: 45%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(247, 147, 26, 0.85), rgba(242, 169, 0, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(242, 169, 0, 0.85), rgba(247, 147, 26, 0.85));
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__details-title {
  font-size: 1.3rem;
  display: block;
}
.card__details-title-1 {
  color: #ffb900;
}
.card__details-title-2 {
  color: #f7931a;
}
.card__details-title-3 {
  color: #f2a900;
}
.card__details-description {
  color: #777;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  margin-bottom: 8rem;
  color: #fff;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}
@media (max-width: 56.25em) {
  .card {
    height: auto;
    border-radius: 13px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__details {
    padding: 3rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 5rem;
  }
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg);
}
@media (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}
@media (max-width: 37.5em) {
  .story {
    transform: skew(0);
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  -webkit-shape-outside: circle(50% at 50% 50%);
  shape-outside: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
}
@media (max-width: 37.5em) {
  .story__shape {
    transform: translateX(-3rem) skew(0);
    width: 12.5rem;
    height: 12.5rem;
  }
}
.story__img {
  width: 100%;
  transform: scale(1.1);
  transition: all 0.5s;
}
.story__text {
  transform: skewX(12deg);
}
.story__text span {
  text-transform: capitalize;
}
@media (max-width: 37.5em) {
  .story__text {
    transform: skew(0);
  }
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: scale(1);
  filter: blur(3px) brightness(80%);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.15;
  overflow: hidden;
}
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__group {
  margin-bottom: 2rem;
}
.form__input {
  font-size: 1.85rem;
  color: #000;
  font-family: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(153, 153, 153, 0.25);
  outline: none;
  border: none;
  border: 2px solid rgba(119, 119, 119, 0.8);
  width: 100%;
  display: block;
  transition: all 0.3s;
}
@media (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #55c57a;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}
.form__label {
  color: #000;
  font-size: 1.55rem;
  font-weight: 300;
  margin-left: 1rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__text {
  font-weight: 300;
  letter-spacing: 0.05rem;
}
.form__text a {
  text-decoration: none;
  color: #55c57a;
}

.collapsible {
  display: block;
}
@media (max-width: 56.25em) {
  .collapsible {
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
.collapsible__box {
  margin-top: 0;
}
.collapsible__content {
  height: 0;
  transform: scaleY(0);
  color: #011c31;
  padding: 0.5rem;
  font-weight: 700;
  border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.collapsible__content span {
  font-size: 1.4rem;
}
.collapsible input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.collapsible input[type=checkbox]:checked ~ .collapsible__content {
  height: 100%;
  transform-origin: top;
  transition: transform 0.2s ease-out;
  transform: scaleY(1);
  color: #011c31;
  background-color: #eee;
  padding-bottom: 1rem;
  text-align: center;
}
.collapsible label {
  display: block;
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  padding: 1rem;
  background-color: #ffb900;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  transition: all 0.2s;
}
@media (max-width: 56.25em) {
  .collapsible label {
    padding: 0.5rem;
  }
}
.collapsible label:hover {
  background-color: #011c31;
}

.progressbars {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
}

.progressbar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  height: 0.5rem;
  position: relative;
  border-radius: 0.3rem;
}
@media (max-width: 56.25em) {
  .progressbar {
    height: 0.75rem;
    border-radius: 1rem;
  }
}
.progressbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E9724C;
  height: 0.5rem;
  border-radius: 0.3rem;
}
@media (max-width: 56.25em) {
  .progressbar::after {
    height: 0.75rem;
    border-radius: 1rem;
  }
}
.progressbar-1::after {
  width: 98%;
}
.progressbar-2::after {
  width: 93%;
}
.progressbar-3::after {
  width: 90%;
}
.progressbar-4::after {
  width: 97%;
}
.progressbar-div {
  padding: 1rem 0;
}
.progressbar__heading {
  font-size: 1.7rem;
  font-weight: 300;
  color: #000;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 56.25em) {
  .progressbar__heading {
    font-size: 2.2rem;
  }
}
.progressbar__percent {
  font-weight: 400;
}

.account {
  display: flex;
  flex-direction: column;
}
.account__div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.account__user {
  flex-basis: 5%;
}
.account__username {
  position: relative;
  font-size: 1.5rem;
  color: #ff7730;
}
@media (max-width: 56.25em) {
  .account__username {
    font-size: 1.75rem;
  }
}
.account__username::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: rgba(255, 119, 48, 0.4);
  border-radius: 5px;
}
.account__username-header {
  display: flex;
  align-items: center;
  font-size: 1.65rem;
  color: rgba(119, 119, 119, 0.6);
}
@media (max-width: 56.25em) {
  .account__username-header {
    font-size: 1.75rem;
  }
}
.account__username-icon {
  fill: rgba(247, 247, 247, 0.6);
  height: 2rem;
  width: 2rem;
  margin-left: 1rem;
}
.account__img {
  width: 20%;
}
.account__dots {
  position: relative;
}
.account__dots::after, .account__dots::before {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.account__dots::after {
  top: 0;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background-color: #ff7730;
}
.account__dots::before {
  top: 0;
  right: 2.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #E9724C;
}
.account hr {
  border: 2px dotted #333;
}
.account__header {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 56.25em) {
  .account__header {
    font-size: 2.5rem;
  }
}
.account__header-flex {
  flex: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account__header-light {
  color: #fff;
}
.account__header-dark {
  color: #000;
}
.account__balance {
  font-size: 3rem;
  font-weight: 400;
  color: #eee;
}
.account__balance-2 {
  font-size: 3rem;
  font-weight: 400;
  color: #000;
}
.account__number {
  font-size: 3rem;
  font-weight: 400;
  color: #ff7730;
  letter-spacing: 0.1rem;
}
.account__referral-link {
  width: inherit;
  background-color: rgba(238, 238, 238, 0.55);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  word-break: break-all;
}
.account__referral-link a {
  text-decoration: none;
  color: #fff;
}
.account__referral-link a:active {
  color: #ff7730;
}

.activate__card-container {
  display: flex;
  justify-content: space-around;
  flex: 1;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .activate__card-container {
    flex-direction: column;
    padding: 0;
  }
}

.activate__card {
  background-color: #999;
  border-radius: 1px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 2.5rem 2rem 2.5rem;
  margin: 4rem 4rem;
  flex: 0 1 27%;
  border: 2.5px solid transparent;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.activate__card:hover {
  border: 2.5px solid rgba(255, 185, 0, 0.7);
}
@media (max-width: 75em) {
  .activate__card {
    flex: 0.25;
  }
}
@media (max-width: 56.25em) {
  .activate__card {
    flex-shrink: 1;
  }
}
.activate__card form .form__input {
  background-color: #f7f7f7;
}
.activate__card-content {
  text-align: center;
}
.activate__card-name {
  font-size: 1.5rem;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
@media (max-width: 56.25em) {
  .activate__card-name {
    font-size: 2rem;
  }
}
.activate__card-name-1 {
  color: #0e1428;
  background-color: #f7f7f7;
}
.activate__card-name-2 {
  color: #0e1428;
  background-color: #E9724C;
}
.activate__card-name-3 {
  color: #eee;
  background-color: #020020;
}
.activate__card-price {
  color: #d41b62;
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 56.25em) {
  .activate__card-price {
    font-size: 5.5rem;
    display: block;
  }
}
.activate__card-desc {
  color: #333;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media (max-width: 56.25em) {
  .activate__card-desc {
    font-size: 1.8rem;
  }
}
.activate__card-withdrawal {
  color: #000;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media (max-width: 56.25em) {
  .activate__card-withdrawal {
    font-size: 3rem;
  }
}
.activate__card-withdrawal span {
  display: block;
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 56.25em) {
  .activate__card-withdrawal span {
    font-size: 3.5rem;
  }
}

.credit__card {
  font-family: "Josefin Sans", sans-serif;
  width: 43rem;
  height: 24rem;
  color: #fff;
  cursor: pointer;
  perspective: 1000px;
}
@media (max-width: 56.25em) {
  .credit__card {
    width: 40rem;
    height: 25rem;
  }
}
@media (max-width: 37.5em) {
  .credit__card {
    width: 38rem;
    height: 25rem;
  }
}
.credit__card:active .credit__card__inner {
  transform: rotateY(-180deg);
}
.credit__card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.credit__card__number {
  font-size: 2rem;
  margin-top: 4rem;
}
.credit__card__holder {
  font-size: 0.8rem;
  margin-top: 3rem;
}
.credit__card__name {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.credit__card__bar {
  background-color: #222;
  margin: 1rem -3rem 0 -3rem;
  height: 2.5rem;
}
.credit__card__cvv {
  margin-top: 2rem;
}
.credit__card__cvv img {
  width: 100%;
  display: block;
  line-height: 0;
}
.credit__card__cvv div {
  flex: 1;
}
.credit__card__cvv p {
  background: #fff;
  color: #000;
  font-size: 1.5rem;
  padding: 0.8rem 1.3rem;
  margin-left: -0.3rem;
}
.credit__card__text {
  margin-top: 2rem;
  color: #777;
  font-size: 1.2rem;
}
.credit__card__signature {
  margin-top: 2rem;
}
.credit__card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.credit__card__inner--back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.credit__card__inner--front, .credit__card__inner--back {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #011438, #010711);
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  backface-visibility: hidden;
}

.map__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

.dashboard {
  position: relative;
  background-color: #0e1428;
  min-height: 100vh;
}

.dashboard__heading {
  display: block;
  color: #0e1428;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
.dashboard__address {
  font-size: 2rem;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 56.25em) {
  .dashboard__address {
    font-size: 2.5rem;
  }
}
.dashboard__qr_code {
  display: block;
  margin: 2rem auto;
  width: 50%;
}

.form__secondary {
  background-color: #f7f7f7;
  border-radius: 1px;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 5rem 5rem;
  margin: 2rem auto;
  flex: 0.5;
}
@media (max-width: 75em) {
  .form__secondary {
    flex: 0.75;
  }
}
@media (max-width: 56.25em) {
  .form__secondary {
    flex: 1;
  }
}
.form__secondary-header {
  font-size: 3rem;
}
@media (max-width: 56.25em) {
  .form__secondary-header {
    font-size: 2.3rem;
  }
}
.form__secondary-icon {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 56.25em) {
  .form__secondary-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.form__preview--img {
  width: 20%;
  display: none;
}

.dashboard__main {
  margin: 2rem 3rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 56.25em) {
  .dashboard__main {
    margin: 3rem 1.5rem;
  }
}
.dashboard__card-box {
  flex: 30%;
  align-self: flex-start;
  margin: 2rem 2rem;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 185, 0, 0.7);
  display: flex;
  flex-direction: column;
}
.dashboard__card-box-2 {
  background-image: linear-gradient(to right bottom, #0e1428, rgba(14, 20, 40, 0.5));
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-3 {
  background-color: rgba(1, 7, 17, 0.95);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
@media (max-width: 37.5em) {
  .dashboard__card-box-3 {
    padding: 2rem 2rem;
  }
}
.dashboard__card-box-4 {
  background-color: #010711;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-5 {
  background-color: rgba(1, 7, 17, 0.9);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-6 {
  background-color: rgba(1, 7, 17, 0.8);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-7 {
  background-color: rgba(1, 7, 17, 0.7);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}
.dashboard__card-box-8 {
  background-color: #f7f7f7;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
  padding: 3rem 3rem;
}

.dashboard__navigation {
  background-color: rgba(1, 7, 17, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 56.25em) {
  .dashboard__navigation {
    padding: 2.5rem 3rem;
  }
}
.dashboard__username {
  color: #d41b62;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
}
.dashboard__username-icon {
  fill: #f7f7f7;
  width: 3.5rem;
  height: 3.5rem;
  align-self: center;
}
.dashboard__logo {
  padding: 0.5rem;
  width: 10%;
}
@media (max-width: 75em) {
  .dashboard__logo {
    width: 20%;
  }
}
@media (max-width: 56.25em) {
  .dashboard__logo {
    width: 40%;
  }
}
.dashboard__notification-icon {
  position: relative;
  stroke: #CAF0F8;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
  transition: all 0.15s ease-in;
  align-self: flex-start;
}
.dashboard__notification-icon--box {
  position: relative;
  flex: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 3rem;
}
.dashboard__notification-icon:hover {
  fill: rgba(255, 255, 255, 0.6);
}
.dashboard__header {
  text-align: center;
  font-size: 2.5rem;
  color: #E9724C;
}
@media (max-width: 56.25em) {
  .dashboard__header {
    font-size: 3rem;
  }
}
.dashboard__header-img {
  width: 20%;
}
@media (max-width: 75em) {
  .dashboard__header-img {
    width: 20%;
  }
}
@media (max-width: 56.25em) {
  .dashboard__header-img {
    width: 50%;
  }
}
.dashboard__navigation-icon {
  height: 4rem;
  width: 4rem;
  fill: #fff;
  cursor: pointer;
  transition: all 0.1s;
}
.dashboard__navigation-icon:hover {
  fill: #E9724C;
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3rem 1.5rem;
  background-color: #fff;
  min-height: 100vh;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  transition: all 2s;
  z-index: 5555;
  display: flex;
  flex-direction: column;
  display: none;
}
.nav__content {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 56.25em) {
  .nav__content {
    margin-top: 7rem;
  }
}
.nav__link, .nav__link:link {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1rem 1.5rem;
  margin: 0.8rem;
  background-color: #0e1428;
  border-radius: 21px;
  display: flex;
  align-items: center;
}
.nav__link:last-child, .nav__link:link:last-child {
  background-color: #fd2626;
}
@media (max-width: 56.25em) {
  .nav__link, .nav__link:link {
    font-size: 2rem;
    font-weight: 300;
    padding: 1.3rem 1.5rem;
    margin: 1.2rem;
    border-radius: 28px;
  }
}
.nav__link:active, .nav__link:link:active {
  color: #E9724C;
}
.nav__icon {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
  fill: currentColor;
}

.nav__button {
  display: inline;
  top: 2rem;
  right: 2.5rem;
  z-index: 9999;
}
@media (max-width: 56.25em) {
  .nav__button {
    right: 3rem;
  }
}

.nav__close-button {
  fill: #fff;
  height: 4rem;
  width: 4rem;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .nav__close-button {
    height: 4.5rem;
    width: 4.5rem;
  }
}
.nav__close-button:hover {
  fill: #ff7730;
}

.nav__checkbox {
  display: none;
}

.nav__checkbox:checked ~ .nav {
  transform: translateX(0%);
  display: flex;
}

.nav__checkbox:checked ~ .nav__button > .nav__close-button {
  fill: #0e1428;
}
.nav__checkbox:checked ~ .nav__button > .nav__close-button:hover {
  fill: #0e1428;
}

.dot {
  width: 10px;
  height: 10px;
  border: 5px solid #ffb900;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #716f42;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
}

.pulse {
  border: 10px solid #E9724C;
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulse 3s ease-out;
  -moz-animation: pulse 3s ease-out;
  animation: pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -2rem;
  right: -2rem;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 56.25em) {
  .pulse {
    top: -2.5rem;
    right: -2.5rem;
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
  }
  25% {
    -moz-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -moz-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
.transaction__box {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  padding: 1.5rem 2rem 1.5rem 1rem;
  margin: 0.5rem 0;
  width: 100%;
  font-size: 1.5rem;
  max-width: 200%;
  display: flex;
  justify-content: space-between;
}
.transaction__box-div:not(:last-child) {
  flex: 1;
  margin-right: 14rem;
}
.transaction__box-div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.transaction__type {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
}
@media (max-width: 56.25em) {
  .transaction__type {
    font-size: 2rem;
  }
}
.transaction__amount {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
}
@media (max-width: 56.25em) {
  .transaction__amount {
    font-size: 2rem;
  }
}
.transaction__status {
  color: #ff7730;
  background-color: #010711;
  border-radius: 6px;
  padding: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 56.25em) {
  .transaction__status {
    font-size: 1.8rem;
  }
}
.transaction__status-icon {
  fill: #2daf13;
  width: 3rem;
  height: 3rem;
}
@media (max-width: 56.25em) {
  .transaction__status-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.transaction__roi {
  font-size: 2rem;
  font-weight: 600;
  color: #2daf13;
}
@media (max-width: 56.25em) {
  .transaction__roi {
    font-size: 2.5rem;
  }
}
.transaction__date {
  color: rgba(51, 51, 51, 0.6);
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 56.25em) {
  .transaction__date {
    font-size: 1.8rem;
  }
}

.transactions {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.dashboard__notification-box {
  opacity: 0;
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 200%;
  position: absolute;
  top: 4rem;
  right: 1rem;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 75em) {
  .dashboard__notification-box {
    width: calc(100vw - 60vw);
  }
}
@media (max-width: 56.25em) {
  .dashboard__notification-box {
    top: 3.7rem;
    right: -6rem;
    width: calc(100vw - 20vw);
  }
}

.dashboard__notification {
  border-radius: 0.3rem;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0.5rem;
  background-color: #eee;
}
.dashboard__notification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 56.25em) {
  .dashboard__notification-header {
    flex-direction: column;
  }
}
.dashboard__notification-title {
  font-size: 1.65rem;
  font-weight: 600;
}
@media (max-width: 56.25em) {
  .dashboard__notification-title {
    font-size: 1.85rem;
  }
}
.dashboard__notification-desc {
  font-size: 1.35rem;
  font-weight: 400;
  padding: 1rem 0;
}
@media (max-width: 56.25em) {
  .dashboard__notification-desc {
    font-size: 1.55rem;
  }
}
.dashboard__notification-date {
  font-size: 1.25rem;
  font-weight: 400;
}
@media (max-width: 56.25em) {
  .dashboard__notification-date {
    font-size: 1.45rem;
  }
}
.dashboard__notification-read {
  color: rgba(51, 51, 51, 0.9);
}
.dashboard__notification-unread {
  color: #000;
  font-weight: 500;
}
.dashboard__notification-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 1rem auto;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  background-color: #ff7730;
  border-radius: 0.3rem;
  color: #fff;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048);
}

.notif__checkbox {
  display: none;
}

.notif__checkbox:checked ~ .dashboard__notification-box {
  opacity: 1;
}

.wallet__address-box {
  background-color: #eee;
  border: 3px solid #ff7730;
  color: #000;
  margin: 2rem 2rem;
  padding: 3.5rem 4rem;
  border-radius: 0.5rem;
  flex: 0.35;
}
@media (max-width: 56.25em) {
  .wallet__address-box {
    flex: 1;
  }
}

.wallet__address {
  word-break: break-all;
  font-size: 1.6rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
}
@media (max-width: 56.25em) {
  .wallet__address {
    font-size: 2rem;
  }
}
.wallet__address-heading {
  font-weight: 300;
  font-size: 1.75rem;
  background-color: #333;
  padding: 1.5rem 2rem;
  margin: 1rem 0;
  border-radius: 1rem;
  color: #fff;
}
@media (max-width: 56.25em) {
  .wallet__address-heading {
    font-size: 2rem;
  }
}
.wallet__address-desc {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  margin: 0.5rem 0 1rem 0;
}
@media (max-width: 56.25em) {
  .wallet__address-desc {
    font-size: 2.25rem;
  }
}
.wallet__address-img {
  display: inline-block;
  margin: 1rem 0;
  width: 40%;
}
@media (max-width: 56.25em) {
  .wallet__address-img {
    width: 45%;
  }
}

.header {
  height: 100vh;
  background-size: cover;
  background-position: top;
  position: relative;
}
@media (max-width: 37.5em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  }
}
.header__logo-box {
  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
}
@media (max-width: 56.25em) {
  .header__logo-box {
    top: 3.3rem;
    left: 3.2rem;
  }
}
.header__logo {
  height: 7.5rem;
}
@media (max-width: 56.25em) {
  .header__logo {
    height: 6.5rem;
  }
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.header__video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: -1000;
  top: 0;
  right: 0;
}
.header__video::-webkit-media-controls {
  -webkit-appearance: none;
  display: none !important;
}
.header__video::-webkit-media-controls-overlay-play-button {
  -webkit-appearance: none;
  display: none !important;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col] {
  float: left;
}
.row [class^=col]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 56.25em) {
  .row [class^=col]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media (max-width: 56.25em) {
  .row [class^=col] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2* ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2* 6rem);
}

.footer {
  background-color: #000;
  padding: 10rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
}
@media (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
    font-size: 1.65rem;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
@media (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 6rem;
  }
}
.footer__logo {
  width: 20rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #f7f7f7;
  padding: 2rem;
  display: inline-block;
}
@media (max-width: 56.25em) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer__link:link, .footer__link:visited {
  display: inline-block;
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer__link:hover, .footer__link:active {
  color: #E9724C;
}
.footer__description {
  border-top: 1px solid #f7f7f7;
  padding: 2rem;
}
@media (max-width: 56.25em) {
  .footer__description {
    width: 100%;
    float: none;
  }
}
.footer__copyright {
  font-size: 1.65rem;
  color: #999;
  font-weight: 400;
}
.footer__form h3 {
  font-size: 2.5rem;
}
.footer__form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}
.navigation__background {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#f2a900, #d41b62);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 56.25em) {
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  margin-left: -30rem;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
  z-index: -1500;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0, transparent 50%, #fff 50%);
  background-size: 230%;
  transition: all 0.4s;
}
.navigation__link:link span, .navigation__link:visited span {
  margin-right: 1rem;
  display: inline-block;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #d41b62;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  margin-left: 0;
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #011c31;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.investment__text {
  color: inherit;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 2;
}
.investment__content .feature-box {
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.1);
}
.investment__content h1 {
  color: #f7931a;
  font-size: 5rem;
}
.investment__content p {
  font-size: 2rem;
}

.section-about {
  background-color: #f7f7f7;
  padding: 10rem 0;
  background-repeat: no-repeat;
  background-image: url(../img/btc.png);
}
@media (max-width: 56.25em) {
  .section-about {
    padding: 0 0 15rem 0;
    background-size: cover;
  }
}

.section-about-2 {
  background-color: #f7f7f7;
  padding: 15rem 0;
  margin-top: -20vh;
  background-image: url(btc1.png);
}
@media (max-width: 56.25em) {
  .section-about-2 {
    padding: 5rem 0;
    background-size: cover;
  }
}

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, #f7931a, rgba(212, 27, 98, 0.45)), url(cta.svg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -1.5rem;
}
.section-features > * {
  transform: skewY(7deg);
}
@media (max-width: 56.25em) {
  .section-features {
    padding: 10rem 0;
    margin-top: -10rem;
  }
}

.section-tours {
  background-color: #f7f7f7;
  padding: 25rem 0 25rem 0;
  margin-top: -10rem;
  background-image: url(box2.png);
}
@media (max-width: 56.25em) {
  .section-tours {
    padding: 20rem 0 35rem 0;
    background-size: cover;
  }
}

.section-features-2 {
  padding: 15rem 0;
  background-size: cover;
  background-image: linear-gradient(to right bottom, rgba(247, 147, 26, 0.65), rgba(247, 147, 26, 0.95)), url(../img/crypto.png);
}
@media (max-width: 56.25em) {
  .section-features-2 {
    padding: 10rem 0;
  }
}

.section-investment-portfolio {
  padding: 15rem 10rem;
  background-image: url(box3.png);
  background-size: cover;
  background-position: fixed;
}
@media (max-width: 56.25em) {
  .section-investment-portfolio {
    padding: 3rem 5rem;
    background-size: cover;
  }
}

.section-stories {
  position: relative;
  padding: 15rem 0;
  background-color: #f7f7f7;
  background-image: url(box1.png);
}
@media (max-width: 56.25em) {
  .section-stories {
    padding: 10rem 0;
  }
}

.section-faq {
  position: relative;
  padding: 15rem 0;
  background-color: #eee;
  background-image: url(eth.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 56.25em) {
  .section-faq {
    padding: 10rem 0;
  }
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #f7931a, #f2a900);
}
@media (max-width: 56.25em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/btc.png);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 75em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../img/btc.png);
    background-size: cover;
  }
}
@media (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/btc.png);
  }
}
.book__form {
  width: 50%;
  padding: 6rem;
}
@media (max-width: 75em) {
  .book__form {
    width: 65%;
  }
}
@media (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}

.section-register {
  border-radius: 3px;
  margin: 10rem auto 10rem auto;
  background-color: #fff;
  width: 50%;
}
@media (max-width: 56.25em) {
  .section-register {
    width: 95%;
  }
}

.register__form {
  padding: 6.5rem;
}
.register__form-logo {
  width: 25%;
  display: block;
  margin: 1rem auto;
  padding: 2rem;
}
@media (max-width: 56.25em) {
  .register__form-logo {
    width: 40%;
  }
}
@media (max-width: 56.25em) {
  .register__form {
    padding: 3.5rem;
  }
}
.register__form .form__group {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
